home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib43 / mntlib / raise.c < prev    next >
C/C++ Source or Header  |  1993-07-06  |  166b  |  14 lines

  1. /* I think ANSI wants this. It's useful, at any rate.
  2.    -- ERS
  3. */
  4.  
  5. #include <unistd.h>
  6. #include <signal.h>
  7.  
  8. int
  9. raise(sig)
  10. int sig;
  11. {
  12.     return kill(getpid(), sig);
  13. }
  14.